home *** CD-ROM | disk | FTP | other *** search
-
- // Copyright 2000, 2001, 2002, 2003 Macromedia, Inc. All rights reserved.
-
-
- //*************************LOCAL FUNCTIONS**************************
-
-
- function MM_hasPropsIE(val)
- {
- // for some objects in IE, this check causes a failure,
- // we need to do the try/catch
- try {
- return MM_hasProps(val);
- } catch(e) {
- //ignore error and return false
- //alert("error caught "+val);
- }
- return false;
- }
-
-
- function MM_printValIE(val)
- {
- // for some objects in IE, this check causes a failure,
- // we need to do the try/catch
- try {
- return MM_printVal(val);
- } catch(e) {
- // return [error]
- return MM_debugError;
- }
- }
-